Databases & Big Data
pdf | | | Author:Visualizing data (1993)

( Category: Data Processing February 6,2024 )
epub |eng | 2022-08-15 | Author:unknow

Cleaning Up History I use rebasing every single day to clean up the overall history before I push code up for a review. Most developers are familiar with a git ...
( Category: MySQL February 3,2024 )
pdf | | | Author:php[architect]

( Category: MySQL February 3,2024 )
epub |eng | 2024-01-02 | Author:McFedries, Paul; [McFedries, Paul]

( Category: MySQL February 1,2024 )
epub |eng | 2011-03-21 | Author:Len Silverston [Silverston, Len]

Level 1 Contact Mechanism Pattern A common approach for data models (and data modelers) is to model the specific contact mechanism needs for an enterprise in order to better understand ...
( Category: Data Warehousing January 30,2024 )
pdf | | | Author:Unknown

( Category: Databases & Big Data January 24,2024 )
pdf | | 0101-01-01 | Author:Big Data, Machine Learning & more, using Python tools (2020)

( Category: Data Mining January 18,2024 )
pdf | | 0101-01-01 | Author:Big Data, Machine Learning & more, using Python tools (2019)

( Category: Data Mining January 18,2024 )
epub |eng | 2023-01-15 | Author:Mohamed Abouahmed & Omar Ahmed

A common model we can use for unsupervised learning is an autoencoder. As mentioned in Chapter 4, an autoencoder is a neural network composed of an encoder and a decoder. ...
( Category: Data Modeling & Design January 7,2024 )
epub |eng | 2022-01-15 | Author:Eryk Lewinson

Plot the efficient frontier: MARKERS = ["o", "X", "d", "*"] fig, ax = plt.subplots() portf_results_df.plot(kind="scatter", x="volatility", y="returns", c="sharpe_ratio", cmap="RdYlGn", edgecolors="black", ax=ax) ax.set(xlabel="Volatility", ylabel="Expected Returns", title="Efficient Frontier") ax.plot(ef_vol_list, ef_rtn_list, "b--") for ...
( Category: Data Modeling & Design January 3,2024 )
epub |eng | | Author:Bill Karwin

SELECT * FROM Bugs WHERE assigned_to <> NULL; The condition in a WHERE clause is satisfied only when the expression is true, but a comparison to NULL is never true; ...
( Category: MySQL December 30,2023 )
epub |eng | 2023-12-15 | Author:Paul Done

Expected pipeline result Once executed, you'll see that the same number of documents appear in the new orders_typed collection as the source collection had, with the same field structure and ...
( Category: Data Warehousing December 28,2023 )
epub, pdf |eng | | Author:chapter-1.html

Listing 9.15 The implementation of the generateToken() method @Override public CsrfToken generateToken(HttpServletRequest httpServletRequest) { String uuid = UUID.randomUUID().toString(); return new DefaultCsrfToken("X-CSRF-TOKEN", "_csrf", uuid); } The saveToken() method saves a generated ...
( Category: Data Processing December 25,2023 )
epub |eng | 2021-07-05 | Author:McGuire, Anthony

( Category: SQL December 20,2023 )